1. /* sfosubsf.cpp by K.Tsuru */
  2. // function ID = 707
  3. /*************************************
  4. SFraction class
  5. It provides the substitution operator.
  6. *************************************/
  7. #ifndef SN_H
  8. #include "sn.h"
  9. #endif
  10. SFraction& SFraction::operator=(const SFraction& a){
  11. if(this != &a){
  12. num = a.num; den = a.den;
  13. reduceDone = a.reduceDone;
  14. }
  15. return *this;
  16. }

sfosubsf.cpp : last modifiled at 2008/03/09 17:47:07(386 bytes)
created at 2015/12/22 16:07:29
The creation time of this html file is 2016/09/13 19:56:38 (Tue Sep 13 19:56:38 2016).